home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1997 May / EnigmA AMIGA RUN 18 (1997)(G.R. Edizioni)(IT)[!][issue 1997-05][EAR-CD II].iso / earcd / comm / mail / yamscrip.lha / Unread.rexx < prev    next >
OS/2 REXX Batch file  |  1996-11-14  |  235b  |  11 lines

  1. /* This script will mark the current message unread and update the index */
  2. options results
  3. address 'YAM'
  4. GetMailInfo File
  5. fname=result
  6. if rc=0 & exists(fname) then do
  7.     address command 'filenote <>nil:' fname 'U'
  8.     MailUpdate
  9.     end
  10. exit
  11.